a=int(input("초기 '*'을 정하십시오. : "))
b=0
c="*"*a
t=0

while t<a:
    d=' '
    d=d*t
    print(d+c[b:])
    t+=1
    b+=1